From b9a864b83e30ad4f514a2df73e7c2bebfe320951 Mon Sep 17 00:00:00 2001 From: Kevin Harrison Date: Sat, 3 Dec 2016 14:04:35 -0500 Subject: [PATCH] Updated Home (markdown) --- Home.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Home.md b/Home.md index 5b34ca4..5e39622 100644 --- a/Home.md +++ b/Home.md @@ -25,9 +25,9 @@ function love.load() end function love.update(dt) - nk.frame_begin() + nk.frameBegin() -- Add UI code here - nk.frame_end() + nk.frameEnd() end function love.draw() @@ -77,7 +77,7 @@ function love.wheelmoved(x, y) end ``` -Put your UI code between the `nk.frame_begin` and `nk.frame_end` calls. See the bundled [example](https://github.com/keharriso/love-nuklear/tree/master/example) for a brief sample of what the library can do. +Put your UI code between the `nk.frameBegin` and `nk.frameEnd` calls. See the bundled [example](https://github.com/keharriso/love-nuklear/tree/master/example) for a brief sample of what the library can do. ## Documentation