mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
* Update translations Adds German and Simplified Chinese and credits to the README * Add warning when changing language without NitroFS * Add separate plural and non-plural strings * Add hu-HU, it-IT, update other translations Also adds a few missing letters to the font * Update translator credits
22 lines
303 B
C
22 lines
303 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
extern char titleName[32];
|
|
|
|
extern int screenMode;
|
|
|
|
extern bool appInited;
|
|
#ifdef SCREENSWAP
|
|
extern bool screenSwapped;
|
|
#endif
|
|
|
|
extern bool arm7SCFGLocked;
|
|
extern bool isRegularDS;
|
|
extern bool is3DS;
|
|
extern int ownNitroFSMounted;
|
|
|
|
extern bool applaunch;
|
|
|
|
|
|
#endif //MAIN_H
|