Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Jul 2, 2015
1 parent 48c25d5 commit 9c2afe9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion content.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ static bool read_content_file(unsigned i, const char *path, void **buf,
uint8_t *ret_buf = NULL;
global_t *global = global_get_ptr();

RARCH_LOG("Loading content file: %s.\n", path);
RARCH_LOG("%s: %s.\n",
msg_hash_to_str(MSG_LOADING_CONTENT_FILE), path);
if (!read_file(path, (void**) &ret_buf, length))
return false;

Expand Down
2 changes: 2 additions & 0 deletions intl/msg_hash_us.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const char *msg_hash_to_str_us(uint32_t hash)
{
case MSG_UNKNOWN:
return "Unknown";
case MSG_LOADING_CONTENT_FILE:
return "Loading content file";
case MSG_RECEIVED:
return "received";
case MSG_UNRECOGNIZED_COMMAND:
Expand Down
2 changes: 2 additions & 0 deletions msg_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

#define MSG_RECEIVED 0xfe0c06acU

#define MSG_LOADING_CONTENT_FILE 0x236398dcU

#define MSG_SAVING_STATE 0xe4f3eb4dU
#define MSG_LOADING_STATE 0x68d8d483U
#define MSG_FAILED_TO_SAVE_STATE_TO 0xcc005f3cU
Expand Down

0 comments on commit 9c2afe9

Please sign in to comment.