diff options
| author | 2014-04-11 18:07:49 -0400 | |
|---|---|---|
| committer | 2014-04-11 18:07:49 -0400 | |
| commit | f6c328cf37fe6e0250c20fcbf128f301b3d71d36 (patch) | |
| tree | a533548f1fd41f7dd9f8351bce54025823680636 /src | |
| parent | added remaining known syscall functions to Syscall_Table (diff) | |
| download | yuzu-f6c328cf37fe6e0250c20fcbf128f301b3d71d36.tar.gz yuzu-f6c328cf37fe6e0250c20fcbf128f301b3d71d36.tar.xz yuzu-f6c328cf37fe6e0250c20fcbf128f301b3d71d36.zip | |
moved hle.cpp into hle folder (due to mistake earlier)
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/core.vcxproj | 2 | ||||
| -rw-r--r-- | src/core/core.vcxproj.filters | 2 | ||||
| -rw-r--r-- | src/core/hle/hle.cpp (renamed from src/core/hle.cpp) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 8097a47d3..89795ce63 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj | |||
| @@ -152,7 +152,7 @@ | |||
| 152 | <ClCompile Include="elf\elf_reader.cpp" /> | 152 | <ClCompile Include="elf\elf_reader.cpp" /> |
| 153 | <ClCompile Include="file_sys\directory_file_system.cpp" /> | 153 | <ClCompile Include="file_sys\directory_file_system.cpp" /> |
| 154 | <ClCompile Include="file_sys\meta_file_system.cpp" /> | 154 | <ClCompile Include="file_sys\meta_file_system.cpp" /> |
| 155 | <ClCompile Include="hle.cpp" /> | 155 | <ClCompile Include="hle\hle.cpp" /> |
| 156 | <ClCompile Include="hle\hle_syscall.cpp" /> | 156 | <ClCompile Include="hle\hle_syscall.cpp" /> |
| 157 | <ClCompile Include="hw\hw.cpp" /> | 157 | <ClCompile Include="hw\hw.cpp" /> |
| 158 | <ClCompile Include="hw\hw_lcd.cpp" /> | 158 | <ClCompile Include="hw\hw_lcd.cpp" /> |
diff --git a/src/core/core.vcxproj.filters b/src/core/core.vcxproj.filters index 79bddf09a..eece5d486 100644 --- a/src/core/core.vcxproj.filters +++ b/src/core/core.vcxproj.filters | |||
| @@ -81,7 +81,7 @@ | |||
| 81 | <ClCompile Include="hle\hle_syscall.cpp"> | 81 | <ClCompile Include="hle\hle_syscall.cpp"> |
| 82 | <Filter>hle</Filter> | 82 | <Filter>hle</Filter> |
| 83 | </ClCompile> | 83 | </ClCompile> |
| 84 | <ClCompile Include="hle.cpp"> | 84 | <ClCompile Include="hle\hle.cpp"> |
| 85 | <Filter>hle</Filter> | 85 | <Filter>hle</Filter> |
| 86 | </ClCompile> | 86 | </ClCompile> |
| 87 | </ItemGroup> | 87 | </ItemGroup> |
diff --git a/src/core/hle.cpp b/src/core/hle/hle.cpp index d62d2d0ce..d62d2d0ce 100644 --- a/src/core/hle.cpp +++ b/src/core/hle/hle.cpp | |||