diff options
| -rw-r--r-- | CMakeLists.txt | 5 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | citrus.sln (renamed from akiru.sln) | 2 | ||||
| -rw-r--r-- | src/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/akiru/CMakeLists.txt | 12 | ||||
| -rw-r--r-- | src/citrus/CMakeLists.txt | 12 | ||||
| -rw-r--r-- | src/citrus/citrus.rc (renamed from src/akiru/akiru.rc) | bin | 3144 -> 3144 bytes | |||
| -rw-r--r-- | src/citrus/citrus.vcxproj (renamed from src/akiru/akiru.vcxproj) | 8 | ||||
| -rw-r--r-- | src/citrus/citrus.vcxproj.filters (renamed from src/akiru/akiru.vcxproj.filters) | 6 | ||||
| -rw-r--r-- | src/citrus/resource.h (renamed from src/akiru/resource.h) | bin | 898 -> 898 bytes | |||
| -rw-r--r-- | src/citrus/src/citrus.cpp (renamed from src/akiru/src/akiru.cpp) | 8 | ||||
| -rw-r--r-- | src/citrus/src/citrus.h (renamed from src/akiru/src/akiru.h) | 16 | ||||
| -rw-r--r-- | src/citrus/src/emu_window/emu_window_glfw.cpp (renamed from src/akiru/src/emu_window/emu_window_glfw.cpp) | 4 | ||||
| -rw-r--r-- | src/citrus/src/emu_window/emu_window_glfw.h (renamed from src/akiru/src/emu_window/emu_window_glfw.h) | 8 | ||||
| -rw-r--r-- | src/citrus/src/version.h (renamed from src/akiru/src/version.h) | 0 | ||||
| -rw-r--r-- | src/common/src/common_paths.h | 2 | ||||
| -rw-r--r-- | src/common/src/emu_window.h | 2 | ||||
| -rw-r--r-- | src/common/src/version.cpp | 2 | ||||
| -rw-r--r-- | src/core/src/core.cpp | 2 | ||||
| -rw-r--r-- | src/core/src/core.h | 2 | ||||
| -rw-r--r-- | src/core/src/mem_map.cpp | 2 | ||||
| -rw-r--r-- | src/core/src/mem_map.h | 2 | ||||
| -rw-r--r-- | vsprops/base.props | 2 |
23 files changed, 52 insertions, 53 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b1c839408..24ede00d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | cmake_minimum_required(VERSION 2.6) | 1 | cmake_minimum_required(VERSION 2.6) |
| 2 | 2 | ||
| 3 | project(akiru) | 3 | project(citrus) |
| 4 | 4 | ||
| 5 | # silence some spam | 5 | # silence some spam |
| 6 | add_definitions(-Wno-attributes) | 6 | add_definitions(-Wno-attributes) |
| @@ -39,8 +39,7 @@ include_directories(${OPENGL_INCLUDE_DIR}) | |||
| 39 | # internal includes | 39 | # internal includes |
| 40 | include_directories(src/common/src) | 40 | include_directories(src/common/src) |
| 41 | include_directories(src/core/src) | 41 | include_directories(src/core/src) |
| 42 | include_directories(src/akiru/src) | 42 | include_directories(src/citrus/src) |
| 43 | include_directories(src/akiru_qt/src) | ||
| 44 | 43 | ||
| 45 | # process subdirectories | 44 | # process subdirectories |
| 46 | if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4) | 45 | if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4) |
| @@ -1,2 +1,2 @@ | |||
| 1 | akiru | 1 | citrus |
| 2 | ===== | 2 | ====== |
| @@ -5,7 +5,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "src\common\common | |||
| 5 | {69F00340-5C3D-449F-9A80-958435C6CF06} = {69F00340-5C3D-449F-9A80-958435C6CF06} | 5 | {69F00340-5C3D-449F-9A80-958435C6CF06} = {69F00340-5C3D-449F-9A80-958435C6CF06} |
| 6 | EndProjectSection | 6 | EndProjectSection |
| 7 | EndProject | 7 | EndProject |
| 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "akiru", "src\akiru\akiru.vcxproj", "{CE7D2C07-21CE-4590-81AB-2ADA88A2B85F}" | 8 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "citrus", "src\citrus\citrus.vcxproj", "{CE7D2C07-21CE-4590-81AB-2ADA88A2B85F}" |
| 9 | ProjectSection(ProjectDependencies) = postProject | 9 | ProjectSection(ProjectDependencies) = postProject |
| 10 | {69F00340-5C3D-449F-9A80-958435C6CF06} = {69F00340-5C3D-449F-9A80-958435C6CF06} | 10 | {69F00340-5C3D-449F-9A80-958435C6CF06} = {69F00340-5C3D-449F-9A80-958435C6CF06} |
| 11 | EndProjectSection | 11 | EndProjectSection |
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 62962f281..967288000 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | add_subdirectory(common) | 1 | add_subdirectory(common) |
| 2 | add_subdirectory(core) | 2 | add_subdirectory(core) |
| 3 | add_subdirectory(akiru) | 3 | add_subdirectory(citrus) |
| 4 | 4 | ||
| 5 | if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4) | 5 | if(QT4_FOUND AND QT_QTCORE_FOUND AND QT_QTGUI_FOUND AND QT_QTOPENGL_FOUND AND NOT DISABLE_QT4) |
| 6 | add_subdirectory(akiru_qt) | 6 | #add_subdirectory(citrus_qt) |
| 7 | endif() | 7 | endif() |
diff --git a/src/akiru/CMakeLists.txt b/src/akiru/CMakeLists.txt deleted file mode 100644 index 9517b11a4..000000000 --- a/src/akiru/CMakeLists.txt +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | set(SRCS src/akiru.cpp | ||
| 2 | src/emuwindow/emuwindow_glfw.cpp) | ||
| 3 | |||
| 4 | # NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable) | ||
| 5 | if (NOT X11_xf86vmode_LIB) | ||
| 6 | set(X11_xv86vmode_LIB Xxf86vm) | ||
| 7 | endif() | ||
| 8 | |||
| 9 | add_executable(akiru ${SRCS}) | ||
| 10 | target_link_libraries(akiru core common ${OPENGL_LIBRARIES} ${GLFW_LIBRARIES} GLEW rt ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB}) | ||
| 11 | |||
| 12 | #install(TARGETS akiru RUNTIME DESTINATION ${bindir}) | ||
diff --git a/src/citrus/CMakeLists.txt b/src/citrus/CMakeLists.txt new file mode 100644 index 000000000..6858a5891 --- /dev/null +++ b/src/citrus/CMakeLists.txt | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | set(SRCS src/citrus.cpp | ||
| 2 | src/emuwindow/emuwindow_glfw.cpp) | ||
| 3 | |||
| 4 | # NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable) | ||
| 5 | if (NOT X11_xf86vmode_LIB) | ||
| 6 | set(X11_xv86vmode_LIB Xxf86vm) | ||
| 7 | endif() | ||
| 8 | |||
| 9 | add_executable(citrus ${SRCS}) | ||
| 10 | target_link_libraries(citrus core common ${OPENGL_LIBRARIES} ${GLFW_LIBRARIES} GLEW rt ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB}) | ||
| 11 | |||
| 12 | #install(TARGETS citrus RUNTIME DESTINATION ${bindir}) | ||
diff --git a/src/akiru/akiru.rc b/src/citrus/citrus.rc index dd5241bdf..dd5241bdf 100644 --- a/src/akiru/akiru.rc +++ b/src/citrus/citrus.rc | |||
| Binary files differ | |||
diff --git a/src/akiru/akiru.vcxproj b/src/citrus/citrus.vcxproj index 513e3412b..1243d14e5 100644 --- a/src/akiru/akiru.vcxproj +++ b/src/citrus/citrus.vcxproj | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | <ProjectGuid>{CE7D2C07-21CE-4590-81AB-2ADA88A2B85F}</ProjectGuid> | 22 | <ProjectGuid>{CE7D2C07-21CE-4590-81AB-2ADA88A2B85F}</ProjectGuid> |
| 23 | <Keyword>Win32Proj</Keyword> | 23 | <Keyword>Win32Proj</Keyword> |
| 24 | <RootNamespace>emu_win32</RootNamespace> | 24 | <RootNamespace>emu_win32</RootNamespace> |
| 25 | <ProjectName>akiru</ProjectName> | 25 | <ProjectName>citrus</ProjectName> |
| 26 | </PropertyGroup> | 26 | </PropertyGroup> |
| 27 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | 27 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| 28 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | 28 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
| @@ -193,17 +193,17 @@ | |||
| 193 | </ProjectReference> | 193 | </ProjectReference> |
| 194 | </ItemGroup> | 194 | </ItemGroup> |
| 195 | <ItemGroup> | 195 | <ItemGroup> |
| 196 | <ClCompile Include="src\akiru.cpp" /> | 196 | <ClCompile Include="src\citrus.cpp" /> |
| 197 | <ClCompile Include="src\emu_window\emu_window_glfw.cpp" /> | 197 | <ClCompile Include="src\emu_window\emu_window_glfw.cpp" /> |
| 198 | </ItemGroup> | 198 | </ItemGroup> |
| 199 | <ItemGroup> | 199 | <ItemGroup> |
| 200 | <ClInclude Include="resource.h" /> | 200 | <ClInclude Include="resource.h" /> |
| 201 | <ClInclude Include="src\akiru.h" /> | 201 | <ClInclude Include="src\citrus.h" /> |
| 202 | <ClInclude Include="src\emu_window\emu_window_glfw.h" /> | 202 | <ClInclude Include="src\emu_window\emu_window_glfw.h" /> |
| 203 | <ClInclude Include="src\version.h" /> | 203 | <ClInclude Include="src\version.h" /> |
| 204 | </ItemGroup> | 204 | </ItemGroup> |
| 205 | <ItemGroup> | 205 | <ItemGroup> |
| 206 | <ResourceCompile Include="akiru.rc" /> | 206 | <ResourceCompile Include="citrus.rc" /> |
| 207 | </ItemGroup> | 207 | </ItemGroup> |
| 208 | <ItemGroup> | 208 | <ItemGroup> |
| 209 | <None Include="CMakeLists.txt" /> | 209 | <None Include="CMakeLists.txt" /> |
diff --git a/src/akiru/akiru.vcxproj.filters b/src/citrus/citrus.vcxproj.filters index a0cff2548..567467ac9 100644 --- a/src/akiru/akiru.vcxproj.filters +++ b/src/citrus/citrus.vcxproj.filters | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 3 | <ItemGroup> | 3 | <ItemGroup> |
| 4 | <ClCompile Include="src\akiru.cpp" /> | 4 | <ClCompile Include="src\citrus.cpp" /> |
| 5 | <ClCompile Include="src\emu_window\emu_window_glfw.cpp"> | 5 | <ClCompile Include="src\emu_window\emu_window_glfw.cpp"> |
| 6 | <Filter>emu_window</Filter> | 6 | <Filter>emu_window</Filter> |
| 7 | </ClCompile> | 7 | </ClCompile> |
| @@ -9,13 +9,13 @@ | |||
| 9 | <ItemGroup> | 9 | <ItemGroup> |
| 10 | <ClInclude Include="resource.h" /> | 10 | <ClInclude Include="resource.h" /> |
| 11 | <ClInclude Include="src\version.h" /> | 11 | <ClInclude Include="src\version.h" /> |
| 12 | <ClInclude Include="src\akiru.h" /> | 12 | <ClInclude Include="src\citrus.h" /> |
| 13 | <ClInclude Include="src\emu_window\emu_window_glfw.h"> | 13 | <ClInclude Include="src\emu_window\emu_window_glfw.h"> |
| 14 | <Filter>emu_window</Filter> | 14 | <Filter>emu_window</Filter> |
| 15 | </ClInclude> | 15 | </ClInclude> |
| 16 | </ItemGroup> | 16 | </ItemGroup> |
| 17 | <ItemGroup> | 17 | <ItemGroup> |
| 18 | <ResourceCompile Include="akiru.rc" /> | 18 | <ResourceCompile Include="citrus.rc" /> |
| 19 | </ItemGroup> | 19 | </ItemGroup> |
| 20 | <ItemGroup> | 20 | <ItemGroup> |
| 21 | <Filter Include="emu_window"> | 21 | <Filter Include="emu_window"> |
diff --git a/src/akiru/resource.h b/src/citrus/resource.h index 0d42c8a8a..0d42c8a8a 100644 --- a/src/akiru/resource.h +++ b/src/citrus/resource.h | |||
| Binary files differ | |||
diff --git a/src/akiru/src/akiru.cpp b/src/citrus/src/citrus.cpp index a31b6fbca..b50c14e80 100644 --- a/src/akiru/src/akiru.cpp +++ b/src/citrus/src/citrus.cpp | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file akiru.cpp | 4 | * @file citrus.cpp |
| 5 | * @author ShizZy <shizzy247@gmail.com> | 5 | * @author ShizZy <shizzy247@gmail.com> |
| 6 | * @date 2013-09-04 | 6 | * @date 2013-09-04 |
| 7 | * @brief Main entry point | 7 | * @brief Main entry point |
| @@ -31,7 +31,7 @@ | |||
| 31 | 31 | ||
| 32 | #include "emu_window/emu_window_glfw.h" | 32 | #include "emu_window/emu_window_glfw.h" |
| 33 | 33 | ||
| 34 | #include "akiru.h" | 34 | #include "citrus.h" |
| 35 | 35 | ||
| 36 | //#define PLAY_FIFO_RECORDING | 36 | //#define PLAY_FIFO_RECORDING |
| 37 | 37 | ||
| @@ -39,7 +39,7 @@ | |||
| 39 | int __cdecl main(int argc, char **argv) { | 39 | int __cdecl main(int argc, char **argv) { |
| 40 | //u32 tight_loop; | 40 | //u32 tight_loop; |
| 41 | 41 | ||
| 42 | printf("akiru starting...\n"); | 42 | printf("citrus starting...\n"); |
| 43 | 43 | ||
| 44 | std::string program_dir = File::GetCurrentDir(); | 44 | std::string program_dir = File::GetCurrentDir(); |
| 45 | 45 | ||
diff --git a/src/akiru/src/akiru.h b/src/citrus/src/citrus.h index 4752b961e..0f4d7dc3f 100644 --- a/src/akiru/src/akiru.h +++ b/src/citrus/src/citrus.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file akiru.cpp | 4 | * @file citrus.h |
| 5 | * @author ShizZy <shizzy247@gmail.com> | 5 | * @author ShizZy <shizzy247@gmail.com> |
| 6 | * @date 2013-09-04 | 6 | * @date 2013-09-04 |
| 7 | * @brief Main entry point | 7 | * @brief Main entry point |
| @@ -22,14 +22,14 @@ | |||
| 22 | * http://code.google.com/p/gekko-gc-emu/ | 22 | * http://code.google.com/p/gekko-gc-emu/ |
| 23 | */ | 23 | */ |
| 24 | 24 | ||
| 25 | #ifndef AKIRU_AKIRU_H_ | 25 | #ifndef CITRUS_CITRUS_H_ |
| 26 | #define AKIRU_AKIRU_H_ | 26 | #define CITRUS_CITRUS_H_ |
| 27 | 27 | ||
| 28 | #include "version.h" | 28 | #include "version.h" |
| 29 | 29 | ||
| 30 | #define APP_NAME "akiru" | 30 | #define APP_NAME "citrus" |
| 31 | #define APP_VERSION "0.31-" VERSION | 31 | #define APP_VERSION "0.01-" VERSION |
| 32 | #define APP_TITLE APP_NAME " " APP_VERSION | 32 | #define APP_TITLE APP_NAME " " APP_VERSION |
| 33 | #define COPYRIGHT "Copyright (C) 2005-2012 Akiru Team" | 33 | #define COPYRIGHT "Copyright (C) 2013 Citrus Team" |
| 34 | 34 | ||
| 35 | #endif // AKIRU_AKIRU_H_ | 35 | #endif // CITRUS_CITRUS_H_ |
diff --git a/src/akiru/src/emu_window/emu_window_glfw.cpp b/src/citrus/src/emu_window/emu_window_glfw.cpp index 01e5992e5..381f1d9a7 100644 --- a/src/akiru/src/emu_window/emu_window_glfw.cpp +++ b/src/citrus/src/emu_window/emu_window_glfw.cpp | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file emu_window_glfw.cpp | 4 | * @file emu_window_glfw.cpp |
| 5 | * @author ShizZy <shizzy@6bit.net> | 5 | * @author ShizZy <shizzy@6bit.net> |
| @@ -54,7 +54,7 @@ EmuWindow_GLFW::EmuWindow_GLFW() { | |||
| 54 | } | 54 | } |
| 55 | glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); | 55 | glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); |
| 56 | glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1); | 56 | glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1); |
| 57 | render_window_ = glfwCreateWindow(640, 480, "akiru", NULL, NULL); | 57 | render_window_ = glfwCreateWindow(640, 480, "citrus", NULL, NULL); |
| 58 | 58 | ||
| 59 | // Setup callbacks | 59 | // Setup callbacks |
| 60 | glfwSetWindowUserPointer(render_window_, this); | 60 | glfwSetWindowUserPointer(render_window_, this); |
diff --git a/src/akiru/src/emu_window/emu_window_glfw.h b/src/citrus/src/emu_window/emu_window_glfw.h index 927d726b8..11d832b9a 100644 --- a/src/akiru/src/emu_window/emu_window_glfw.h +++ b/src/citrus/src/emu_window/emu_window_glfw.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file emu_window_glfw.h | 4 | * @file emu_window_glfw.h |
| 5 | * @author ShizZy <shizzy@6bit.net> | 5 | * @author ShizZy <shizzy@6bit.net> |
| @@ -22,8 +22,8 @@ | |||
| 22 | * http://code.google.com/p/gekko-gc-emu/ | 22 | * http://code.google.com/p/gekko-gc-emu/ |
| 23 | */ | 23 | */ |
| 24 | 24 | ||
| 25 | #ifndef AKIRU_EMUWINDOW_GLFW_ | 25 | #ifndef CITRUS_EMUWINDOW_GLFW_ |
| 26 | #define AKIRU_EMUWINDOW_GLFW_ | 26 | #define CITRUS_EMUWINDOW_GLFW_ |
| 27 | 27 | ||
| 28 | #include <GL/glew.h> | 28 | #include <GL/glew.h> |
| 29 | #include <GLFW/glfw3.h> | 29 | #include <GLFW/glfw3.h> |
| @@ -53,4 +53,4 @@ private: | |||
| 53 | 53 | ||
| 54 | }; | 54 | }; |
| 55 | 55 | ||
| 56 | #endif // AKIRU_EMUWINDOW_GLFW_ | 56 | #endif // CITRUS_EMUWINDOW_GLFW_ |
diff --git a/src/akiru/src/version.h b/src/citrus/src/version.h index 07b88c641..07b88c641 100644 --- a/src/akiru/src/version.h +++ b/src/citrus/src/version.h | |||
diff --git a/src/common/src/common_paths.h b/src/common/src/common_paths.h index fae810bf0..1ad887a79 100644 --- a/src/common/src/common_paths.h +++ b/src/common/src/common_paths.h | |||
| @@ -26,7 +26,7 @@ | |||
| 26 | #ifdef USER_DIR | 26 | #ifdef USER_DIR |
| 27 | #define EMU_DATA_DIR USER_DIR | 27 | #define EMU_DATA_DIR USER_DIR |
| 28 | #else | 28 | #else |
| 29 | #define EMU_DATA_DIR ".akiru" | 29 | #define EMU_DATA_DIR ".citrus" |
| 30 | #endif | 30 | #endif |
| 31 | #endif | 31 | #endif |
| 32 | 32 | ||
diff --git a/src/common/src/emu_window.h b/src/common/src/emu_window.h index 56ff94819..12b475934 100644 --- a/src/common/src/emu_window.h +++ b/src/common/src/emu_window.h | |||
| @@ -81,7 +81,7 @@ public: | |||
| 81 | protected: | 81 | protected: |
| 82 | EmuWindow() : client_area_width_(640), client_area_height_(480) { | 82 | EmuWindow() : client_area_width_(640), client_area_height_(480) { |
| 83 | char window_title[255]; | 83 | char window_title[255]; |
| 84 | sprintf(window_title, "akiru [%s|%s] - %s", | 84 | sprintf(window_title, "citrus [%s|%s] - %s", |
| 85 | "null-cpu", | 85 | "null-cpu", |
| 86 | "null-renderer", | 86 | "null-renderer", |
| 87 | __DATE__); | 87 | __DATE__); |
diff --git a/src/common/src/version.cpp b/src/common/src/version.cpp index d5cf10c3d..f4010b6df 100644 --- a/src/common/src/version.cpp +++ b/src/common/src/version.cpp | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | #define BUILD_TYPE_STR "" | 13 | #define BUILD_TYPE_STR "" |
| 14 | #endif | 14 | #endif |
| 15 | 15 | ||
| 16 | const char *scm_rev_str = "Akiru " | 16 | const char *scm_rev_str = "citrus " |
| 17 | #if !SCM_IS_MASTER | 17 | #if !SCM_IS_MASTER |
| 18 | "[" SCM_BRANCH_STR "] " | 18 | "[" SCM_BRANCH_STR "] " |
| 19 | #endif | 19 | #endif |
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp index 61e3a8df4..873c687b7 100644 --- a/src/core/src/core.cpp +++ b/src/core/src/core.cpp | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file core.cpp | 4 | * @file core.cpp |
| 5 | * @author ShizZy <shizzy247@gmail.com> | 5 | * @author ShizZy <shizzy247@gmail.com> |
diff --git a/src/core/src/core.h b/src/core/src/core.h index 41429e8a3..2270e46e2 100644 --- a/src/core/src/core.h +++ b/src/core/src/core.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file core.h | 4 | * @file core.h |
| 5 | * @author ShizZy <shizzy247@gmail.com> | 5 | * @author ShizZy <shizzy247@gmail.com> |
diff --git a/src/core/src/mem_map.cpp b/src/core/src/mem_map.cpp index e649da91b..8793fdc8d 100644 --- a/src/core/src/mem_map.cpp +++ b/src/core/src/mem_map.cpp | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file mem_map.cpp | 4 | * @file mem_map.cpp |
| 5 | * @author ShizZy <shizzy247@gmail.com> | 5 | * @author ShizZy <shizzy247@gmail.com> |
diff --git a/src/core/src/mem_map.h b/src/core/src/mem_map.h index 3251fc416..29ec2e7a9 100644 --- a/src/core/src/mem_map.h +++ b/src/core/src/mem_map.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * Copyright (C) 2013 Akiru Emulator | 2 | * Copyright (C) 2013 Citrus Emulator |
| 3 | * | 3 | * |
| 4 | * @file mem_map.h | 4 | * @file mem_map.h |
| 5 | * @author ShizZy <shizzy247@gmail.com> | 5 | * @author ShizZy <shizzy247@gmail.com> |
diff --git a/vsprops/base.props b/vsprops/base.props index 2eb647e98..a4f95a3e7 100644 --- a/vsprops/base.props +++ b/vsprops/base.props | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | <StructMemberAlignment>16Bytes</StructMemberAlignment> | 12 | <StructMemberAlignment>16Bytes</StructMemberAlignment> |
| 13 | <FunctionLevelLinking>true</FunctionLevelLinking> | 13 | <FunctionLevelLinking>true</FunctionLevelLinking> |
| 14 | <MultiProcessorCompilation>true</MultiProcessorCompilation> | 14 | <MultiProcessorCompilation>true</MultiProcessorCompilation> |
| 15 | <AdditionalIncludeDirectories>$(SolutionDir)src\common\src;$(SolutionDir)src\core\src;$(SolutionDir)src\akiru\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | 15 | <AdditionalIncludeDirectories>$(SolutionDir)src\common\src;$(SolutionDir)src\core\src;$(SolutionDir)src\citrus\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
| 16 | <PreprocessorDefinitions>_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1</PreprocessorDefinitions> | 16 | <PreprocessorDefinitions>_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1</PreprocessorDefinitions> |
| 17 | <RuntimeTypeInfo>false</RuntimeTypeInfo> | 17 | <RuntimeTypeInfo>false</RuntimeTypeInfo> |
| 18 | </ClCompile> | 18 | </ClCompile> |