summaryrefslogtreecommitdiff
path: root/src/screen.h
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-12-25 10:01:40 +0100
committerLoic Guegan <loic.guegan@mailbox.org>2023-12-25 10:01:40 +0100
commit7642efad5ad58c4aec26eec3c8bb879f69272eaf (patch)
treea8af12fc0f51855b6b1b4008453bc91198c096f8 /src/screen.h
parent8fd3d27abe8e5da08ce99adcf02616324eef4e79 (diff)
Minor changes
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen.h b/src/screen.h
index 9faf781..7578552 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -15,7 +15,7 @@ typedef struct SCREEN_DATA {
void ScreenInit(int width, int height);
void ScreenClear();
-void ScreenSetPixel(int x, int y, unsigned char state);
-void ScreenPixelFlip(int x, int y);
+char ScreenPixelApply(int x, int y, unsigned char state);
+void ScreenWH(int *width, int *height);
void ScreenUpdate();
void ScreenClose();