summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklib.c')
-rw-r--r--apps/plugins/lua/rocklib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c
index d1ef3adaaf..c266516602 100644
--- a/apps/plugins/lua/rocklib.c
+++ b/apps/plugins/lua/rocklib.c
@@ -304,7 +304,7 @@ RB_WRAP(playlist)
304 break; 304 break;
305 } 305 }
306 306
307 rb->yield(); 307 yield();
308 lua_pushinteger(L, result); 308 lua_pushinteger(L, result);
309 return 1; 309 return 1;
310} 310}
@@ -382,7 +382,7 @@ RB_WRAP(audio)
382 return 1; 382 return 1;
383 } 383 }
384 384
385 rb->yield(); 385 yield();
386 lua_pushinteger(L, status); /* return previous (or current) audio status */ 386 lua_pushinteger(L, status); /* return previous (or current) audio status */
387 return 1; 387 return 1;
388} 388}
@@ -502,7 +502,7 @@ RB_WRAP(pcm)
502 break; 502 break;
503 } 503 }
504 504
505 rb->yield(); 505 yield();
506 return 1; 506 return 1;
507} 507}
508 508