parent
dd2332737d
commit
f00221705b
12
src/code.c
12
src/code.c
|
@ -1678,11 +1678,11 @@ static void drawCodeToolbar(Code* code)
|
||||||
static const u8 Icons[] =
|
static const u8 Icons[] =
|
||||||
{
|
{
|
||||||
0b00000000,
|
0b00000000,
|
||||||
0b01000000,
|
0b00100000,
|
||||||
0b01100000,
|
0b00110000,
|
||||||
0b01110000,
|
0b00111000,
|
||||||
0b01100000,
|
0b00110000,
|
||||||
0b01000000,
|
0b00100000,
|
||||||
0b00000000,
|
0b00000000,
|
||||||
0b00000000,
|
0b00000000,
|
||||||
|
|
||||||
|
@ -1717,7 +1717,7 @@ static void drawCodeToolbar(Code* code)
|
||||||
enum {Count = sizeof Icons / BITS_IN_BYTE};
|
enum {Count = sizeof Icons / BITS_IN_BYTE};
|
||||||
enum {Size = 7};
|
enum {Size = 7};
|
||||||
|
|
||||||
static const char* Tips[] = {"RUN [ctrl+f]","FIND [ctrl+f]", "GOTO [ctrl+g]", "OUTLINE [ctrl+o]"};
|
static const char* Tips[] = {"RUN [ctrl+r]","FIND [ctrl+f]", "GOTO [ctrl+g]", "OUTLINE [ctrl+o]"};
|
||||||
|
|
||||||
for(s32 i = 0; i < Count; i++)
|
for(s32 i = 0; i < Count; i++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -198,4 +198,5 @@ void playSystemSfx(s32 id);
|
||||||
|
|
||||||
void runGameFromSurf();
|
void runGameFromSurf();
|
||||||
void gotoSurf();
|
void gotoSurf();
|
||||||
void exitFromGameMenu();
|
void exitFromGameMenu();
|
||||||
|
void runProject();
|
Loading…
Reference in New Issue