summaryrefslogtreecommitdiff
path: root/src/code/z_jpeg.c
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2021-09-29 01:53:56 +0200
committerGitHub <noreply@github.com>2021-09-28 19:53:56 -0400
commitc57c0f13fcd2d83d412641e71de05153c20fd6d3 (patch)
tree7adb5722bdab340812f14c562c0d8be8b5d9e87e /src/code/z_jpeg.c
parent063b4aed0ce33473d0ba79f8dcdda5c2db47a9ce (diff)
Format all translation comments like `// "..."` (hopefully all of them) (#986)
* Format all translation comments like `// "..."` (hopefully all of them) * Move translation comments to before on long lines Located them with `grep -r src -e '^[^(]*);[ ]*//'` Regex `osSyncPrintf\([^;]*\n.*//` didn't find more * Format two more
Diffstat (limited to 'src/code/z_jpeg.c')
-rw-r--r--src/code/z_jpeg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/z_jpeg.c b/src/code/z_jpeg.c
index 8dd991a15..6f57e12ac 100644
--- a/src/code/z_jpeg.c
+++ b/src/code/z_jpeg.c
@@ -179,9 +179,9 @@ void Jpeg_ParseMarkers(u8* ptr, JpegContext* ctx) {
// Start of Frame, stores important metadata of the image.
// Only used for extracting the sampling factors (ctx->mode).
osSyncPrintf("MARKER_SOF %d "
- "精度%02x " // accuracy
- "垂直%d " // vertical
- "水平%d " // horizontal
+ "精度%02x " // "accuracy"
+ "垂直%d " // "vertical"
+ "水平%d " // "horizontal"
"compo%02x "
"(1:Y)%d (H0=2,V0=1(422) or 2(420))%02x (量子化テーブル)%02x "
"(2:Cb)%d (H1=1,V1=1)%02x (量子化テーブル)%02x "