diff options
| author | 2014-09-07 11:50:43 -0700 | |
|---|---|---|
| committer | 2014-09-08 15:43:22 -0700 | |
| commit | 5472fd4d9b19011a36604a9c7f9c66f3ebe84e3f (patch) | |
| tree | b55a6013b561cbb1986a04f2154fe18c0774e891 /src/common/mem_arena.cpp | |
| parent | loader.cpp: improved file extension checking, made Upper/LowerStr useful (diff) | |
| download | yuzu-5472fd4d9b19011a36604a9c7f9c66f3ebe84e3f.tar.gz yuzu-5472fd4d9b19011a36604a9c7f9c66f3ebe84e3f.tar.xz yuzu-5472fd4d9b19011a36604a9c7f9c66f3ebe84e3f.zip | |
Added string_util to common, small changes in loader.cpp
Diffstat (limited to 'src/common/mem_arena.cpp')
| -rw-r--r-- | src/common/mem_arena.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mem_arena.cpp b/src/common/mem_arena.cpp index b76ac92d3..d4dd933bf 100644 --- a/src/common/mem_arena.cpp +++ b/src/common/mem_arena.cpp | |||
| @@ -143,7 +143,7 @@ void MemArena::GrabLowMemSpace(size_t size) | |||
| 143 | // a bit more. | 143 | // a bit more. |
| 144 | for (int i = 0; i < 10000; i++) | 144 | for (int i = 0; i < 10000; i++) |
| 145 | { | 145 | { |
| 146 | std::string file_name = StringFromFormat("/citramem.%d", i); | 146 | std::string file_name = Common::StringFromFormat("/citramem.%d", i); |
| 147 | fd = shm_open(file_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600); | 147 | fd = shm_open(file_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600); |
| 148 | if (fd != -1) | 148 | if (fd != -1) |
| 149 | { | 149 | { |