mirror of
https://github.com/rvtr/ctr_test_tools.git
synced 2025-10-31 13:41:24 -04:00
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_test_tools@8 6b0af911-cb57-b745-895f-eec5701120e1
20 lines
425 B
C
20 lines
425 B
C
#ifndef DRAW_H_
|
|
#define DRAW_H_
|
|
|
|
#include <nn/am/am_ApiSystemMenu.h>
|
|
#include "sdAccessor.h"
|
|
#include "window.h"
|
|
|
|
const u16 fileStartPos = 2;
|
|
const u16 manualStartPos = 16;
|
|
const size_t X_SCALE = 8;
|
|
const size_t Y_SCALE = 8;
|
|
|
|
const u16 screenHeight = ( 240 - (Y_SCALE * fileStartPos) )/ Y_SCALE;
|
|
|
|
|
|
void InitializeGraphics(void);
|
|
void Draw(Window& top, Window& bottom,SdAccessor& sd);
|
|
|
|
#endif /* DRAW_H_ */
|