Skip to content

Commit

Permalink
[chore] cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowblaze committed Jun 19, 2024
1 parent 228e669 commit baa8381
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ if (NGF_BUILD_SAMPLES STREQUAL "yes")
MACOSX_BUNDLE_BUNDLE_VERSION "0.0.1"
MACOSX_BUNDLE_SHORT_VERSION_STRING "0.0.1"
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_LIST_DIR}/samples/common/platform/ios/Info.plist.in
XCODE_ATTRIBUTE_DEVELOPMENT_TEAM "T7V25MSAGB"
XCODE_ATTRIBUTE_DEVELOPMENT_TEAM "{YOUR_APPLE_DEVELOPER_TEAM_ID}"
XCODE_ATTRIBUTE_TARGETED_DEVICE_FAMILY "1,2"
)
endif()
Expand Down
2 changes: 1 addition & 1 deletion samples/09-volume-rendering/volume-rendering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void* sample_initialize(
auto state = new volume_rendering::state {};

/** Open the file containing the volume data and read in the dimensions. */
std::string path = get_file_path("assets/stag-beetle-volume.dat");
std::string path = get_file_path("assets/stag-beetle-volume.dat");
FILE* volume_data_file = fopen(path.c_str(), "rb");
if (volume_data_file == nullptr) {
loge("failed to open the volume data file.");
Expand Down

0 comments on commit baa8381

Please sign in to comment.