Skip to content

Commit

Permalink
Fixed credits
Browse files Browse the repository at this point in the history
  • Loading branch information
OGApollo committed Apr 24, 2021
1 parent a83f80f commit 67025e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
10 changes: 5 additions & 5 deletions TJAPlayer3/Common/Discord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static void UpdatePresence(string details, string state, long startTimeSt
if (startTimeStamp != 0) presence.startTimestamp = startTimeStamp;
if (endTimeStamp != 0) presence.endTimestamp = endTimeStamp;
presence.largeImageKey = StrToPtr("shibaicon");
presence.largeImageText = StrToPtr("TaikoShiba! by OGApollo");
presence.largeImageText = StrToPtr("T‎a‎i‎k‎o‎S‎h‎i‎b‎a‎!‎ b‎y O‎G‎A‎p‎o‎l‎l‎o");
if (!string.IsNullOrEmpty(smallImageKey)) presence.smallImageKey = StrToPtr(smallImageKey);
if (!string.IsNullOrEmpty(smallImageText)) presence.smallImageText = StrToPtr(smallImageText);

Expand All @@ -116,12 +116,12 @@ public static void UpdatePresence(string details, string state, long startTimeSt
public static void Shutdown()
{
DiscordRpc.Shutdown();
Trace.TraceInformation("[Discord] Shutdowned.");
Trace.TraceInformation("[D‎isc‎ord] Shutdowned.");
}

private static void ReadyCallback()
{
Trace.TraceInformation("[Discord] Ready.");
Trace.TraceInformation("[D‎isc‎ord] Ready.");
}

/// <summary>
Expand All @@ -131,7 +131,7 @@ private static void ReadyCallback()
/// <param name="message">エラーメッセージ。</param>
private static void DisconnectedCallback(int errorCode, string message)
{
Trace.TraceInformation("[Discord] Disconnected.");
Trace.TraceInformation("[Di‎sco‎rd] Disc‎on‎nect‎ed.");
}

/// <summary>
Expand All @@ -141,7 +141,7 @@ private static void DisconnectedCallback(int errorCode, string message)
/// <param name="message">エラーメッセージ。</param>
private static void ErrorCallback(int errorCode, string message)
{
Trace.TraceInformation("[Discord] Error occured: {0} {1}", errorCode, message);
Trace.TraceInformation("[Di‎sco‎rd] Err‎or occu‎red: {0} {1}", errorCode, message);
}

// string型の文字列をポインタで参照させるようにするためのメソッド。
Expand Down
13 changes: 6 additions & 7 deletions TJAPlayer3/Stages/04.Config/CStageコンフィグ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -636,13 +636,12 @@ private void t説明文パネルに現在選択されているメニューの説
case 2:
str[ 1, 0 ] =

"TaikoShiba! Creator: OGApollo\n" +
"Special thanks to:\n" +
"· 東方好きren君\n" +
"· KabanFriends & brian218\n" +
"· AioiLight & twopointzero\n" +
"· Locha\n" +
\n"
"Ta‎i‎koS‎hib‎a! Cr‎eat‎or: O‎GA‎p‎ol‎lo\n" +
"S‎pec‎ia‎l th‎an‎ks t‎o:\n" +
"· 東‎方‎好‎き‎r‎‎en‎君\n" +
"· Kab‎anF‎rie‎n‎ds & b‎rian‎21‎8\n" +
"· A‎ioi‎Li‎ght & t‎wo‎poin‎tzer‎o\n" +
"· L‎och‎a\n"
; break;
}

Expand Down

0 comments on commit 67025e4

Please sign in to comment.