aboutsummaryrefslogtreecommitdiff
path: root/src/ahoy/emulator.h
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-02-16 15:37:31 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-02-16 15:37:31 +0100
commit58d34988518e04a279d1eba6225af54c4c8c2d78 (patch)
tree5eed8df30409ed9f00f90248286bb115c31de8e6 /src/ahoy/emulator.h
parent7b00d8fb5fc3adc16938f608f490ad05b9aa76fd (diff)
Print filenames in error messages
Diffstat (limited to 'src/ahoy/emulator.h')
-rw-r--r--src/ahoy/emulator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ahoy/emulator.h b/src/ahoy/emulator.h
index a9c4398..24aa8ce 100644
--- a/src/ahoy/emulator.h
+++ b/src/ahoy/emulator.h
@@ -24,7 +24,7 @@ struct chip8 {
uint64_t screen[32];
};
-void emuinit(struct u8view);
+void emuinit(struct u8view, const char *);
void emutick(void);
extern struct chip8 c8;