backend-infra-engineer: Post v0.3.9-hotfix7 snapshot (build cleanup)

This commit is contained in:
scawful
2025-12-22 00:20:49 +00:00
parent 2934c82b75
commit 5c4cd57ff8
1259 changed files with 239160 additions and 43801 deletions

View File

@@ -4,7 +4,7 @@
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "app/rom.h"
#include "rom/rom.h"
#include "testing.h"
namespace yaze {
@@ -31,7 +31,7 @@ class MockRom : public Rom {
* @return Status of the operation
*/
absl::Status SetTestData(const std::vector<uint8_t>& data) {
auto status = LoadFromData(data, false); // Don't load Zelda3 specific data
auto status = LoadFromData(data); // Don't load Zelda3 specific data
if (status.ok()) {
test_data_loaded_ = true;
}