Minor changes
This commit is contained in:
parent
9550924042
commit
07c7e35bff
3 changed files with 3 additions and 2 deletions
|
@ -23,7 +23,7 @@ int main(int argc, char *argv[])
|
|||
while (!WindowShouldClose()){
|
||||
VCPUFetch();
|
||||
VCPUDecode();
|
||||
VCPUExecute();
|
||||
VCPUExecute();
|
||||
ScreenUpdate();
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ void ScreenInit(int width, int height){
|
|||
|
||||
SetTraceLogLevel(LOG_ERROR); // Disable anoying raylib logs
|
||||
InitWindow(width, height, "Chip-8 Emulator");
|
||||
SetTargetFPS(200); // Set game to run at 60 frames-per-second
|
||||
SetTargetFPS(30); // Set game to run at 60 frames-per-second
|
||||
}
|
||||
|
||||
void ScreenClear() {
|
||||
|
|
|
@ -16,6 +16,7 @@ typedef struct SCREEN_DATA {
|
|||
void ScreenInit(int width, int height);
|
||||
void ScreenClear();
|
||||
char ScreenPixelApply(int x, int y, unsigned char state);
|
||||
void ScreenPixelFlip(int x, int y);
|
||||
void ScreenWH(int *width, int *height);
|
||||
void ScreenUpdate();
|
||||
void ScreenClose();
|
||||
|
|
Loading…
Add table
Reference in a new issue