Minor changes
This commit is contained in:
parent
1f3e1f7f54
commit
3924115080
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ int main(int argc, char *argv[])
|
|||
ScreenUpdate();
|
||||
}
|
||||
|
||||
ScreenFinish();
|
||||
ScreenClose();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ void ScreenSetPixel(int x, int y, char state){
|
|||
Screen.pixels[x+y*64]=(state==0) ? 0: 1;
|
||||
}
|
||||
|
||||
void ScreenFinish(){
|
||||
void ScreenClose(){
|
||||
CloseWindow(); // Close window and OpenGL context
|
||||
}
|
||||
|
||||
|
|
|
@ -15,4 +15,4 @@ void ScreenInit(int width, int height);
|
|||
void ScreenClear();
|
||||
void ScreenSetPixel(int x, int y, char state);
|
||||
void ScreenUpdate();
|
||||
void ScreenFinish();
|
||||
void ScreenClose();
|
||||
|
|
Loading…
Add table
Reference in a new issue