diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-09-29 08:07:43 +0200 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-09-29 16:22:35 +1000 |
commit | 8efdd2c51419ad7a38a6594ecabe729c6ab824e4 (patch) | |
tree | 38a6dd324e04c4076f62dce2671ae88b10b96bfc /src/gos/sys_defs.h | |
parent | b7a89b2adaa9ee170d20a0454309ed204a6ffa39 (diff) | |
download | uGFX-8efdd2c51419ad7a38a6594ecabe729c6ab824e4.tar.gz uGFX-8efdd2c51419ad7a38a6594ecabe729c6ab824e4.tar.bz2 uGFX-8efdd2c51419ad7a38a6594ecabe729c6ab824e4.zip |
/src/gos/gfx_* -> /src/gos/gos_*
Diffstat (limited to 'src/gos/sys_defs.h')
-rw-r--r-- | src/gos/sys_defs.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gos/sys_defs.h b/src/gos/sys_defs.h index d116826f..e4b3ddd2 100644 --- a/src/gos/sys_defs.h +++ b/src/gos/sys_defs.h @@ -440,21 +440,21 @@ * (without any of the documentation overheads) is in the files below. */ #elif GFX_USE_OS_RAWRTOS - #include "src/gos/gfx_rawrtos.h" + #include "src/gos/gos_rawrtos.h" #elif GFX_USE_OS_CHIBIOS - #include "src/gos/gfx_chibios.h" + #include "src/gos/gos_chibios.h" #elif GFX_USE_OS_FREERTOS - #include "src/gos/gfx_freertos.h" + #include "src/gos/gos_freertos.h" #elif GFX_USE_OS_WIN32 - #include "src/gos/gfx_win32.h" + #include "src/gos/gos_win32.h" #elif GFX_USE_OS_LINUX - #include "src/gos/gfx_linux.h" + #include "src/gos/gos_linux.h" #elif GFX_USE_OS_OSX - #include "src/gos/gfx_osx.h" + #include "src/gos/gos_osx.h" #elif GFX_USE_OS_RAW32 - #include "src/gos/gfx_raw32.h" + #include "src/gos/gos_raw32.h" #elif GFX_USE_OS_ECOS - #include "src/gos/gfx_ecos.h" + #include "src/gos/gos_ecos.h" #else #error "Your operating system is not supported yet" #endif |