function love.load()
love.mouse.setVisible(false)
cursorImage = love.graphics.newImage("gfx/cursor32.png")
end
function love.update(dt)
mouse_x = love.mouse.getX()
mouse_y = love.mouse.getY()
end
function love.draw()
love.graphics.draw(cursorImage, mouse_x, mouse_y)
end
And I can show the cursor ! Is there any way to do this without this code ?
I could be wrong, but you've most likely hid the cursor on Fraps itself. Make sure that the checkbox "Hide mouse cursor in video", in the "Movies" tab, is unchecked. If it doesn't works, I guess you'll only be able to add an image, like you already did...
The checkbox is unchecked, already check this before !
I think is there no difference between the cursor method and the image method, but I can be wrong.