Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
/ DDLC-LOVE Public archive

Commit

Permalink
Some changes
Browse files Browse the repository at this point in the history
Former-commit-id: 786f224
  • Loading branch information
LukeZGD committed Jan 2, 2019
1 parent 5c6372a commit 8f60481
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Binary file modified PSVita Assets/sce_sys/param.sfo
Binary file not shown.
8 changes: 4 additions & 4 deletions game/draw.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
lg = love.graphics
local drawbottom
local xps = {c=260,ct=285,textbox=230,namebox=260}
local yps = {c=590,ct=532,textbox=565,namebox=526}
local gui_ctc_x = 1010
local yps = {c=593,ct=532,textbox=565,namebox=526}
local gui_ctc_x = 1015
local xh
local yh

Expand Down Expand Up @@ -146,9 +146,9 @@ end

function drawTextBox()
if sectimer >= 0.5 then
gui_ctc_x = math.max(gui_ctc_x - 0.1, 1010)
gui_ctc_x = math.max(gui_ctc_x - 0.1, 1015)
else
gui_ctc_x = math.min(gui_ctc_x + 0.1, 1015)
gui_ctc_x = math.min(gui_ctc_x + 0.1, 1020)
end

if (not menu_enabled or (event_enabled and textbox_enabled)) and not poem_enabled then
Expand Down
9 changes: 4 additions & 5 deletions game/scripts/script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ function cw(p1, stext, tag)
end

if style_edited then
c_a1 = 55
c_a1 = 52
else
c_a1 = 75
c_a1 = 70
end
c_disp = wrap(textx,c_a1)

local temptext = wrap(stext,75)
local temptext = wrap(stext,70)
local temptext2 = ct..': '..temptext
if history[1] ~= temptext and history[1] ~= temptext2 then
for i = 30, 1, -1 do
Expand Down Expand Up @@ -103,8 +103,7 @@ function cw(p1, stext, tag)
end

function scriptCheck()
c_disp = {'','','',''}
textx = ''
c_disp = ''

if poemsread ~= -1 and poemresponses and script_poemresponsesx then
poemresponses()
Expand Down

0 comments on commit 8f60481

Please sign in to comment.