Skip to content

Commit 82f5e32

Browse files
committed
update
1 parent fbe1ee4 commit 82f5e32

12 files changed

+6
-8
lines changed

ScreenShots/ScreenShots_2.jpg

-5.21 KB
Loading

ScreenShots/ScreenShots_3.jpg

-18.3 KB
Loading

ScreenShots/ScreenShots_4.jpg

-24 KB
Loading

ScreenShots/ScreenShots_5.jpg

48.3 KB
Loading

ScreenShots/ScreenShots_6.jpg

277 KB
Loading

ScreenShots/ScreenShots_7.jpg

168 KB
Loading
-512 Bytes
Binary file not shown.
-512 Bytes
Binary file not shown.

out/RipJKAnime_NX.nro

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

source/JKanime.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ int searchjk(void* data) {
451451
val4 = content.find("</p>", val3);
452452
gsearchpreview = content.substr(val3, val4 - val3);
453453
RemoveAccents(gsearchpreview);
454-
if (gsearchpreview.length() > 120){
455-
gsearchpreview=gsearchpreview.substr(0,105)+"...";
454+
if (gsearchpreview.length() > 90){
455+
gsearchpreview=gsearchpreview.substr(0,90)+"...";
456456
}
457457
BD["arrays"]["search"]["date"].push_back(gsearchpreview);
458458
val1++;

source/main.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -996,18 +996,16 @@ try{
996996
}
997997

998998
//Draw Header
999-
gTextTexture.loadFromRenderedText(GOD.gFont, "Búsqueda", {100,0,0});
999+
gTextTexture.loadFromRenderedText(GOD.gFont, "Resultados de Búsqueda:", {100,0,0});
10001000
gTextTexture.render(SCREEN_WIDTH - gTextTexture.getWidth() - 5, 2);
10011001
{//Draw footer buttons
10021002
int dist = 1100,posdist = 160;
10031003
B_A.render_T(dist, 680,"Aceptar");dist -= posdist;
10041004
B_B.render_T(dist, 680,"Atras");dist -= posdist;
10051005
B_R.render_T(dist, 680,"Buscar");dist -= posdist;
10061006
}
1007-
if (porcentajebuffer > 0){
1008-
gTextTexture.loadFromRenderedText(GOD.gFont, "Buffering: ("+std::to_string(porcentajebuffer)+"/"+std::to_string(porcentajebufferAll)+")", {0,100,0});
1009-
gTextTexture.render(SCREEN_WIDTH - gTextTexture.getWidth() - 15, 22);
1010-
}
1007+
gTextTexture.loadFromRenderedText(GOD.gFont, BD["searchtext"], {0,0,0});
1008+
gTextTexture.render(SCREEN_WIDTH - gTextTexture.getWidth() - 15, 22);
10111009
}
10121010
else
10131011
{
@@ -1133,7 +1131,7 @@ try{
11331131
het = porcentajebuffer > 0 ? T_D.getHeight()+22 : 20;
11341132
}
11351133
if (statenow == searchstate){
1136-
het = porcentajebuffer > 0 ? T_D.getHeight()+22 : 20;
1134+
het = 42;
11371135
}
11381136
if (statenow == favoritesstate){
11391137
het = porcentajebufferF > 0 ? T_D.getHeight()+22 : 20;

0 commit comments

Comments
 (0)