From 0bc74382576872f945e84da97fc64725d92f6061 Mon Sep 17 00:00:00 2001 From: Detanup01 <91248446+Detanup01@users.noreply.github.com> Date: Mon, 8 Jan 2024 17:17:29 +0100 Subject: [PATCH] Update steam_remote_storage.h better fprintf --- dll/dll/steam_remote_storage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/dll/steam_remote_storage.h b/dll/dll/steam_remote_storage.h index 26840c3b..25c90720 100644 --- a/dll/dll/steam_remote_storage.h +++ b/dll/dll/steam_remote_storage.h @@ -379,7 +379,7 @@ bool SetCloudEnabledThisApp( bool bEnabled ) STEAM_CALL_RESULT( RemoteStorageDownloadUGCResult_t ) SteamAPICall_t UGCDownload( UGCHandle_t hContent, uint32 unPriority ) { - PRINT_DEBUG("Steam_Remote_Storage::UGCDownload %u\n", hContent); + PRINT_DEBUG("Steam_Remote_Storage::UGCDownload %llu\n", hContent); RemoteStorageDownloadUGCResult_t data = {}; if (shared_files.count(hContent)) { data.m_eResult = k_EResultOK; @@ -770,7 +770,7 @@ SteamAPICall_t EnumeratePublishedWorkshopFiles( EWorkshopEnumerationType eEnumer STEAM_CALL_RESULT( RemoteStorageDownloadUGCResult_t ) SteamAPICall_t UGCDownloadToLocation( UGCHandle_t hContent, const char *pchLocation, uint32 unPriority ) { - PRINT_DEBUG("Steam_Remote_Storage::UGCDownloadToLocation %u %s\n", hContent, pchLocation); + PRINT_DEBUG("Steam_Remote_Storage::UGCDownloadToLocation %llu %s\n", hContent, pchLocation); // TODO is this implementation correct? std::lock_guard lock(global_mutex); RemoteStorageDownloadUGCResult_t data{};