| 177 | } |
| 178 | |
| 179 | size_t DolphinAccessor::getRAMTotalSize() |
| 180 | { |
| 181 | if (isMEM2Present()) |
| 182 | { |
| 183 | return Common::GetMEM1SizeReal() + Common::GetMEM2SizeReal(); |
| 184 | } |
| 185 | if (isARAMAccessible()) |
| 186 | { |
| 187 | return Common::GetMEM1SizeReal() + Common::ARAM_SIZE; |
| 188 | } |
| 189 | |
| 190 | return Common::GetMEM1SizeReal(); |
| 191 | } |
| 192 | |
| 193 | const std::string& DolphinAccessor::getGameID() |
| 194 | { |
nothing calls this directly
no test coverage detected