summaryrefslogtreecommitdiff
path: root/tools/gfx/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/window.h')
-rw-r--r--tools/gfx/window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gfx/window.h b/tools/gfx/window.h
index e154acec3..e6f886f42 100644
--- a/tools/gfx/window.h
+++ b/tools/gfx/window.h
@@ -5,7 +5,7 @@
namespace gfx {
-typedef struct Window Window;
+struct Window;
enum class KeyCode
{
@@ -94,7 +94,7 @@ int runApplication(
#define GFX_CONSOLE_MAIN(APPLICATION_ENTRY) \
int main(int argc, char** argv) { \
- return gfx::runApplication(&(APPLIATION_ENTRY), argc, argv); \
+ return gfx::runApplication(&(APPLICATION_ENTRY), argc, argv); \
}
#ifdef _WIN32