Minor changes

This commit is contained in:
Loïc Guégan 2023-12-24 22:06:22 +01:00
parent 1f3e1f7f54
commit 3924115080
3 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ int main(int argc, char *argv[])
ScreenUpdate();
}
ScreenFinish();
ScreenClose();
return 0;
}

View file

@ -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
}

View file

@ -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();